home *** CD-ROM | disk | FTP | other *** search
- /***********************************************************************
- *
- *
- * busybox uglobals.c -- Version 3.0
- *
- * Copyright (c)
- * Apple Computer, Inc. 1986-1990
- * All Rights Reserved.
- *
- * Developer Technical Support Apple II Sample Code
- *
- * This file contains the code which intializes the global variables
- * used by the busy box program.
- *
- ***********************************************************************/
-
- #include "busybox.h"
-
- #include <quickdraw.h>
- #include <window.h>
-
- unsigned int userID; /* returned from MMStartUp */
- unsigned int quitFlag = 0; /* True when quitting */
- unsigned int staggerCount = 0; /* Used to stagger windows as they open */
- WmTaskRec event; /* All events are returned here */
-
- GrafPortPtr windowList[NumWindows];
-
- void initGlobals()
- {
- quitFlag = staggerCount = 0;
- }
-